github.com/go-faster/jx.Encoder.w (field)
43 uses
github.com/go-faster/jx (current package)
enc.go#L9: w Writer // underlying writer
enc.go#L30: return e.w.Write(p)
enc.go#L35: return e.w.WriteTo(w)
enc.go#L45: return e.w.String()
enc.go#L52: e.w.Reset()
enc.go#L58: e.w.ResetWriter(out)
enc.go#L64: e.w.Grow(n)
enc.go#L68: func (e Encoder) Bytes() []byte { return e.w.Buf }
enc.go#L71: func (e *Encoder) SetBytes(buf []byte) { e.w.Buf = buf }
enc.go#L75: return e.w.byte(c)
enc.go#L81: e.w.RawStr(v)
enc.go#L87: e.w.Raw(b)
enc.go#L93: e.w.Null()
enc.go#L99: e.w.Bool(v)
enc.go#L106: fail = e.comma() || e.w.ObjStart()
enc.go#L117: fail = e.comma() || e.w.FieldStart(field)
enc.go#L142: return e.writeIndent() || e.w.ObjEnd()
enc.go#L148: e.w.ObjStart() ||
enc.go#L149: e.w.ObjEnd()
enc.go#L169: fail = e.comma() || e.w.ArrStart()
enc.go#L177: e.w.ArrStart() ||
enc.go#L178: e.w.ArrEnd()
enc.go#L187: e.w.ArrEnd()
enc_b64.go#L8: e.w.Base64(data)
enc_float.go#L8: e.w.Float32(v)
enc_float.go#L16: e.w.Float64(v)
enc_int.go#L6: e.w.Int(v)
enc_int.go#L12: e.w.UInt(v)
enc_int.go#L18: e.w.UInt8(v)
enc_int.go#L24: e.w.Int8(v)
enc_num.go#L6: e.w.Num(v)
enc_str.go#L9: e.w.Str(v)
enc_str.go#L18: e.w.ByteStr(v)
enc_str_escape.go#L6: e.w.StrEscape(v)
enc_str_escape.go#L12: e.w.ByteStrEscape(v)
enc_stream.go#L19: w: Writer{
enc_stream.go#L29: return e.w.Close()
w_int.gen.go#L53: return e.comma() || e.w.UInt16(v)
w_int.gen.go#L70: return e.comma() || e.w.Int16(v)
w_int.gen.go#L110: return e.comma() || e.w.UInt32(v)
w_int.gen.go#L127: return e.comma() || e.w.Int32(v)
w_int.gen.go#L203: return e.comma() || e.w.UInt64(v)
w_int.gen.go#L220: return e.comma() || e.w.Int64(v)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |